handleAbout
Performs an action when the user selects the About menu item.
public void handleAbout ();DISCUSSION
This application-defined method is called when the user selects the About menu item in the Apple menu. Typically this method displays a splash screen containing information about the application, such as a brief description, copyright information, the names of the development team, and so on.You must register the method name by calling theregisterAboutHandler
method (page 43) when initializing the application. The handleAbout method is only useful if you have packaged your Java application using JBindery.SEE ALSO
TheregisterAboutHandler
method (page 43).